home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
exec
/
funinc.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
430 b
|
27 lines
/*
\funcref{fun\_inc}{void fun\_inc ()}
{}
{}
{}
{fun\_dec()}
{funinc.c}
{
This function decrements the {\em vu.intval} field of a variable. The
The number of the variable (a 16-bits unsigned number) is assumed to
follow the {\em op\_dec} opcode.
}
*/
#include "icm-exec.h"
void fun_inc ()
{
register VAR_
*dest;
dest = getdest ();
dest->vu.intval++;
}